home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / htmlview / demounit.dfm / demounit.txt
Encoding:
Text File  |  1996-09-15  |  3.1 KB  |  150 lines

  1. object Form1: TForm1
  2.   Left = 215
  3.   Top = 108
  4.   Width = 555
  5.   Height = 395
  6.   Caption = 'Form1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   Menu = MainMenu
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   TextHeight = 16
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 330
  20.     Width = 547
  21.     Height = 19
  22.     Align = alBottom
  23.     Alignment = taLeftJustify
  24.     BevelInner = bvLowered
  25.     BevelOuter = bvNone
  26.     TabOrder = 0
  27.   end
  28.   object Panel2: TPanel
  29.     Left = 0
  30.     Top = 0
  31.     Width = 547
  32.     Height = 33
  33.     Align = alTop
  34.     BevelOuter = bvNone
  35.     TabOrder = 1
  36.     object Edit1: TEdit
  37.       Left = 190
  38.       Top = 4
  39.       Width = 337
  40.       Height = 24
  41.       TabStop = False
  42.       ReadOnly = True
  43.       TabOrder = 0
  44.     end
  45.     object Reload: TButton
  46.       Left = 10
  47.       Top = 4
  48.       Width = 59
  49.       Height = 24
  50.       Caption = '&Reload'
  51.       Enabled = False
  52.       TabOrder = 1
  53.       OnClick = ReloadClick
  54.     end
  55.     object BackButton: TButton
  56.       Left = 69
  57.       Top = 4
  58.       Width = 59
  59.       Height = 24
  60.       Caption = '&Back'
  61.       Enabled = False
  62.       TabOrder = 2
  63.       OnClick = FwdBackClick
  64.     end
  65.     object FwdButton: TButton
  66.       Left = 128
  67.       Top = 4
  68.       Width = 59
  69.       Height = 24
  70.       Caption = '&Forward'
  71.       Enabled = False
  72.       TabOrder = 3
  73.       OnClick = FwdBackClick
  74.     end
  75.   end
  76.   object Panel3: TPanel
  77.     Left = 0
  78.     Top = 33
  79.     Width = 547
  80.     Height = 297
  81.     Align = alClient
  82.     BevelInner = bvLowered
  83.     BevelOuter = bvNone
  84.     Caption = 'Panel3'
  85.     TabOrder = 2
  86.     object Viewer: THTMLViewer
  87.       Left = 1
  88.       Top = 1
  89.       Width = 545
  90.       Height = 295
  91.       OnHotSpotCovered = HotSpotChange
  92.       OnHotSpotClick = HotSpotClick
  93.       OnHistoryChange = HistoryChange
  94.       ViewImages = False
  95.       TabStop = True
  96.       TabOrder = 0
  97.       Align = alClient
  98.       BorderStyle = bsNone
  99.       HistoryMaxCount = 6
  100.     end
  101.   end
  102.   object OpenDialog: TOpenDialog
  103.     DefaultExt = 'htm'
  104.     Filter = 'html files|*.htm|all files|*.*'
  105.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  106.     Left = 393
  107.     Top = 2
  108.   end
  109.   object MainMenu: TMainMenu
  110.     Left = 355
  111.     Top = 3
  112.     object File1: TMenuItem
  113.       Caption = '&File'
  114.       object Open: TMenuItem
  115.         Caption = '&Open'
  116.         OnClick = OpenFileClick
  117.       end
  118.       object N1: TMenuItem
  119.         Caption = '-'
  120.       end
  121.       object Exit: TMenuItem
  122.         Caption = 'E&xit'
  123.         OnClick = ExitClick
  124.       end
  125.     end
  126.     object options1: TMenuItem
  127.       Caption = '&Options'
  128.       object ShowImages: TMenuItem
  129.         Caption = '&Show images'
  130.         OnClick = ShowImagesClick
  131.       end
  132.       object Background1: TMenuItem
  133.         Caption = '&Background'
  134.         object clBtnFace1: TMenuItem
  135.           Caption = 'clBtnFace'
  136.           OnClick = ColorClick
  137.         end
  138.         object clWindow1: TMenuItem
  139.           Caption = 'clWindow'
  140.           OnClick = ColorClick
  141.         end
  142.       end
  143.     end
  144.     object HistoryMenuItem: TMenuItem
  145.       Caption = '&History'
  146.       Visible = False
  147.     end
  148.   end
  149. end
  150.